home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
cpp_libs
/
intrvews
/
xgrab.lha
/
xgrab
/
include
/
checkpoint.h
< prev
next >
Wrap
C/C++ Source or Header
|
1990-03-06
|
481b
|
24 lines
/**
GRAB Graph Layout and Browser System
Copyright (c) 1989, Tera Computer Company
**/
/* header file for checkpoints */
#ifndef checkpoint_h
#define checkpoint_h
#include "digraph.h"
typedef struct /* info for a digraph */
{
DIGRAPH* digraph; /* for now, just save the digraph */
} CHECKPT;
int num_ckpts; /* number of checkpoints */
CHECKPT** ckpts; /* array of checkpoints */
int curr_ckpt; /* index into array to access current checkpoint */
#endif